Get REAL!
  • Girl Survey
  • Session Summary
README

This is not a live dashboard!

Data was last updated 03/15/2025.

Pre Surveys

256

Post Surveys

72

Date entry by Council:
Council Post Pre
Citrus Council 0 75
Gateway Council 22 65
Southeast Council 50 89
West Central Council 0 27
Total 72 256

Get REAL! Girl Survey Data Entry Report

Pre Surveys by Site:
Inputs.table(filtered)
Post Surveys by Site:
Inputs.table(postSite)
//| expandable: false

// Tranpose the data to  make it usable in ojs


// Create a dropdown menu of the songs
viewof councilDropdown = Inputs.select(
  survey_data_ojs.map(d => d.council),
  {
    label: "Choose a council",
    unique: true
  }
)
README

This is not a live dashboard!

Data was last updated 03/15/2025.

Session Summary:
Council n percent
Citrus Council 43 19.1%
Gateway Council 96 42.7%
Southeast Council 86 38.2%
Total 225 -

Get REAL! Session Summary Data Entry Report

Session Summary by Site:
Inputs.table(session)
// Tranpose the data to  make it usable in ojs


// Create a dropdown menu of the songs
viewof councilDropdown1 = Inputs.select(
  survey_data_ojs.map(d => d.council),
  {
    label: "Choose a council",
    unique: true
  }
)
session_summary_ojs = transpose(session_data)
sessionSiteCount_ojs = transpose(sessionSiteCount)
survey_data_ojs = transpose(survey_data)


//Tranpose the data to  make it usable in ojs
surveySiteCount_ojs= transpose(surveyPreSiteCount)
surveyPostSiteCount_ojs= transpose(surveyPostSiteCount)
filtered = surveySiteCount_ojs.filter(function(x) {
  return councilDropdown == x.council;
})
postSite = surveyPostSiteCount_ojs.filter(function(x) {
  return councilDropdown == x.council;
})
session = sessionSiteCount_ojs.filter(function(x) {
    return councilDropdown1 == x.council;
}
                                    )